Trim<S>
型レベルの
String.prototype.trim()
#WIP
https://github.com/type-challenges/type-challenges/blob/master/questions/108-medium-trim/README.ja.md
実装
type-challenges
106
与えられた文字列の頭の空白を除く
code:ts
type trimed = TrimLeft<' Hello World '> // 'Hello World '
実装